home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / program / gemxx19.zoo / gem++19 / man / gemto.man < prev    next >
Text File  |  1993-05-04  |  1KB  |  54 lines

  1.                      GEM++ - C++ LIBRARIES FOR GEM/AES/VDI
  2.  
  3.  
  4.  
  5. NAME
  6.      GEMtextobject - treats a GEMobject as a string.
  7.  
  8. DESCRIPTION
  9.      To access the text of a GEMobject, the SetText() and Text() methods
  10.      can be used.
  11.  
  12.      This class makes a closer relationship between a GEMobject and
  13.      a char* by providing automatic coercion.
  14.  
  15.      This is mainly demonstrative, as coercion should not be overused.
  16.  
  17. CONSTRUCTORS
  18.      GEMtextobject(GEMform& f, int RSCindex)
  19.        As per GEMobject.
  20.  
  21. METHODS
  22.      operator char*()
  23.        Cast the GEMtextobject to a char*.
  24.  
  25.      GEMtextobject& operator = (char*)
  26.        Assign a char* to the GEMtextobject.
  27.  
  28. USAGE
  29.      {
  30.          GEMtextobject foo(fooform,FOO);
  31.          strcpy(foo,"Hello!");
  32.      }
  33.  
  34. SEE ALSO
  35.      GEMobject
  36.  
  37. BUGS
  38.      Bugs in GEM++ should be reported to warwick@cs.uq.oz.au
  39.  
  40. AUTHOR
  41.      Warwick Allison, 1993.
  42.      warwick@cs.uq.oz.au
  43.  
  44. COPYING
  45.      This functionality is part of the GEM++ library,
  46.      and is Copyright 1993 by Warwick W. Allison.
  47.  
  48.      GEM++ is free and protected under the GNU Library General Public
  49.      License.
  50.  
  51.      You are free to copy and modify these sources, provided you
  52.      acknowledge the origin by retaining this notice, and adhere to
  53.      the conditions described in the GNU LGPL.
  54.